- The XBRL Standard
- XBRL Specifications
- Registries
- Functions Registry 1.0
- Functions Registry
- xfi:c-equal-set
- 80208:
Function test xfi:c-equal-set
Documentation
Tests of function xfi:c-equal-set($left as node()*, $right as node()*) as xs:boolean
Owners
Name
|
Affiliation
|
Email
|
Start
|
End
|
Herm Fischer |
UBMatrix / Mark V Systems
|
fischer@markv.com |
19-02-2008 at 00:00:00 |
|
Richard Ashby |
CoreFiling Ltd
|
rna@corefiling.com |
30-11-2012 at 00:00:00 |
|
References
http://www.xbrl.org/Specification/XF-PWD-2006-12-07.htm#_Toc152670710
Test Case Variations
V-01
Returns c-equality of nodes equal and in order
Documentation
Inputs
- schema: c-equal.xsd
- linkbase: c-equal-definition.xml
- instance: c-equal-instance.xml
(DTS Discovery starting point)
(ID=V01)
-
Function Call:
xfi:c-equal-set( (//c:P1[@id eq 'V01-left'], //c:P3[@id eq 'V07-left']),
(//c:P3[@id eq 'V07-left'], //c:P1[@id eq 'V01-right']) )
(against file V01)
Outputs
-
Result test:
$result instance of xs:boolean and
count( $result ) eq 1 and
$result eq true()
V-02
Same as V-01 but typed dimension elements in different order
Documentation
Inputs
- schema: c-equal.xsd
- linkbase: c-equal-definition.xml
- instance: c-equal-instance.xml
(DTS Discovery starting point)
(ID=V02)
-
Function Call:
xfi:c-equal-set( (//c:P1[@id eq 'V01-left'], //c:P3[@id eq 'V07-left']),
(//c:P1[@id eq 'V03-right'], //c:P3[@id eq 'V07-left']) )
(against file V02)
Outputs
-
Result test:
$result instance of xs:boolean and
count( $result ) eq 1 and
$result eq false()
V-03
Same as V-01 but arguments are sequences
Documentation
Inputs
- schema: c-equal.xsd
- linkbase: c-equal-definition.xml
- instance: c-equal-instance.xml
(DTS Discovery starting point)
(ID=V03)
-
Function Call:
xfi:c-equal-set( ( //c:P1[@id eq 'V01-left'], //c:P3[@id eq 'V07-left']),
( //c:P1[@id eq 'V01-right'], //c:P3[@id eq 'V07-left']) )
(against file V03)
Outputs
-
Result test:
$result instance of xs:boolean and
count( $result ) eq 1 and
$result eq true()
V-04
Same as V-01 but arguments are sequences not same length
Documentation
Inputs
Outputs
-
Result test:
$result instance of xs:boolean and
count( $result ) eq 1 and
$result eq false()
V-05
Wrong node to function
Documentation
XPath-defined error for node type incorrect.
Inputs
Outputs
-
Error code: xqt-err:XPTY0004
V-06
Non item node to function
Documentation
XBRL-defined error for node type incorrect.
Inputs
Outputs
-
Error code: xfie:NodeIsNotXbrlItem
V-07
A sequence of concepts as argument
Documentation
XPath-defined error for node type incorrect number of arguments.
Inputs
Outputs
-
Error code: xqt-err:XPST0017
V-08
Performs set de-duplication of sequences
Documentation
Works for sequences containing duplicate entries, which are equal when compared as sets
Inputs
- schema: c-equal.xsd
- instance: c-equal-instance.xml
(DTS Discovery starting point)
(ID=V08)
-
Function Call:
xfi:c-equal-set(
( //c:P1[@id='V01-left']),
( //c:P1[@id='V01-left'], //c:P1[@contextRef='c-V01-left'])
)
(against file V08)
Outputs
-
Result test:
$result eq true()
Revisions
Name
|
On
|
Details
|
Herm Fischer |
19-02-2008 at 00:00:00 |
Created the test case.
|
Herm Fischer |
11-09-2010 at 00:00:00 |
Corrected test case instances removing nested IDs in context typed dimension values per bug 378.
|
Richard Ashby |
30-11-2012 at 00:00:00 |
Added variation confirming de-duplication of sequences into sets.
|